home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr31 / 303304.zip / NRUPDATE.BAT < prev    next >
DOS Batch File  |  1995-02-11  |  560b  |  23 lines

  1. @echo off
  2. rem This batch file patches version 3.03 to version 3.04 of Netroom
  3.  
  4. if not exist rm386.exe goto error1
  5. if not exist patch.exe goto error1
  6. if not exist 303A303B.RTP goto error1
  7. if not exist 303B304.RTP goto error1
  8.  
  9. patch 303A303B.RTP
  10. patch 303B304.RTP
  11.  
  12. goto end
  13.  
  14. :error1
  15. echo.
  16. echo  To apply this patch, execute this batch file from the Netroom
  17. echo  directory.  The Netroom directory must contain the files PATCH.EXE,
  18. echo  303A303B.RTP, and 303B304.RTP.  The Netroom directory MUST be the current
  19. echo  directory.
  20. echo.
  21.  
  22. :end
  23.